GET data/{name}/{recordId}
Gets a record using the default section layout.
Request Information
URI
https://scoregroup-uat-api.xaitcpq.net/data/{name}/{recordId}?fields[0]={fields[0]}&fields[1]={fields[1]}&share={share}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Page name. |
string |
Required |
| recordId |
Record Identifier. |
string |
Required |
| fields |
Fields to include |
Collection of string |
Required |
| share |
Optional share parameter |
globally unique identifier |
None. |
Body Parameters
None.
Response Information
Resource Description
Section Data.
SectionData| Name | Description | Type | Additional information |
|---|---|---|---|
| Section | string |
None. |
|
| Locked | boolean |
None. |
|
| LastModified | LastModified |
None. |
|
| CurrencyField | globally unique identifier |
None. |
|
| ChangeLogMessage | string |
None. |
|
| Data | Collection of DataValue |
None. |
Response Formats
application/json, text/json
Sample:
{
"Section": "sample string 1",
"Locked": true,
"LastModified": {
"DateTime": "2026-09-25T00:36:18.0573977Z",
"UserName": "sample string 1",
"UserId": "930f1311-a276-4353-8d1e-35454f53f718"
},
"CurrencyField": "51ec96c4-eaf0-4f49-b4a1-f73b68b61cf2",
"ChangeLogMessage": "sample string 3",
"Data": [
{
"Field": "c776d193-aaf5-4d48-8c59-390a43f4b904",
"SectionField": "8fa42534-fbdb-440b-a577-a127ba3e39df",
"TableName": "sample string 3",
"FieldName": "sample string 4",
"Locked": true,
"Component": "sample string 6",
"Value": {},
"HumanReadableValue": {}
},
{
"Field": "c776d193-aaf5-4d48-8c59-390a43f4b904",
"SectionField": "8fa42534-fbdb-440b-a577-a127ba3e39df",
"TableName": "sample string 3",
"FieldName": "sample string 4",
"Locked": true,
"Component": "sample string 6",
"Value": {},
"HumanReadableValue": {}
}
]
}
text/html
Sample:
{"Section":"sample string 1","Locked":true,"LastModified":{"DateTime":"2026-09-25T00:36:18.0573977Z","UserName":"sample string 1","UserId":"930f1311-a276-4353-8d1e-35454f53f718"},"CurrencyField":"51ec96c4-eaf0-4f49-b4a1-f73b68b61cf2","ChangeLogMessage":"sample string 3","Data":[{"Field":"c776d193-aaf5-4d48-8c59-390a43f4b904","SectionField":"8fa42534-fbdb-440b-a577-a127ba3e39df","TableName":"sample string 3","FieldName":"sample string 4","Locked":true,"Component":"sample string 6","Value":{},"HumanReadableValue":{}},{"Field":"c776d193-aaf5-4d48-8c59-390a43f4b904","SectionField":"8fa42534-fbdb-440b-a577-a127ba3e39df","TableName":"sample string 3","FieldName":"sample string 4","Locked":true,"Component":"sample string 6","Value":{},"HumanReadableValue":{}}]}
application/xml, text/xml
Sample:
<SectionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
<ChangeLogMessage>sample string 3</ChangeLogMessage>
<CurrencyField>51ec96c4-eaf0-4f49-b4a1-f73b68b61cf2</CurrencyField>
<Data>
<DataValue>
<Component>sample string 6</Component>
<Field>c776d193-aaf5-4d48-8c59-390a43f4b904</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>8fa42534-fbdb-440b-a577-a127ba3e39df</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
<DataValue>
<Component>sample string 6</Component>
<Field>c776d193-aaf5-4d48-8c59-390a43f4b904</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>8fa42534-fbdb-440b-a577-a127ba3e39df</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
</Data>
<LastModified>
<DateTime>2026-09-25T00:36:18.0573977+00:00</DateTime>
<UserId>930f1311-a276-4353-8d1e-35454f53f718</UserId>
<UserName>sample string 1</UserName>
</LastModified>
<Locked>true</Locked>
<Section>sample string 1</Section>
</SectionData>